home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROGS.ZIP / REPRO.ICN < prev    next >
Text File  |  1992-09-28  |  616b  |  20 lines

  1. ############################################################################
  2. #
  3. #    File:     repro.icn
  4. #
  5. #    Subject:  Program to reproduce itself
  6. #
  7. #    Author:   Kenneth Walker
  8. #
  9. #    Date:     December 11, 1991
  10. #
  11. ###########################################################################
  12. #
  13. #     This is the shortest known self-reproducing Icon program. (Assuming
  14. #  You remove this header; it does not reproduce that!)
  15. #
  16. ############################################################################
  17.  
  18. procedure main();x:="procedure main();x:= \nx[21]:=image(x);write(x);end"
  19. x[21]:=image(x);write(x);end
  20.